home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Micro Dingo 39
/
Micro_Dingo_39_CD1.mdx
/
Delires
/
Hentai
/
sim.swf
/
scripts
/
DefineButton2_296
/
BUTTONCONDACTION on(release, keyPress d).as
Wrap
Text File
|
2002-05-21
|
465b
|
28 lines
on(release, keyPress "d"){
if(hp >= 20 and money >= 20)
{
if(ch < 200)
{
money -= 20;
hp -= 20;
if(style == 2)
{
ch = ch + 5 + random(4);
}
else
{
ch = ch + 3 + random(3);
}
if(200 < ch)
{
ch = 200;
}
gotoAndPlay(221);
}
}
else
{
gotoAndStop(250);
}
}